Calendar for WinForms | ComponentOne
C1.Framework.Mathematics Namespace / Matrix<T> Class / Matrix<T> Constructor / Matrix<T> Constructor(Boolean,Vector<T>[])
A bool indicates whether the direction of vectors is vertical.
A Vector array indicates the vectors.

In This Topic
    Matrix<T> Constructor(Boolean,Vector<T>[])
    In This Topic
    Initializes a new instance of Matrix class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal vertical As Boolean, _
       ByVal ParamArray vectors() As Vector(Of T) _
    )
    public Matrix<T>( 
       bool vertical,
       params Vector<T>[] vectors
    )

    Parameters

    vertical
    A bool indicates whether the direction of vectors is vertical.
    vectors
    A Vector array indicates the vectors.
    See Also